ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ComboBox<T> Class
Members






In This Topic
    ComboBox<T> Class
    In This Topic
    The ComboBox control allows users to pick strings from lists. The control automatically completes entries as the user types, and allows users to show a drop-down list with the items available.
    Object Model
    ComboBox<T> Class
    Syntax
    'Declaration
     
    
    <ScriptsAttribute(Mono.Cecil.CustomAttributeArgument[])>
    Public Class ComboBox(Of T) 
       Inherits ComboBoxBase(Of T)
       Implements IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent 
    'Usage
     
    
    Dim instance As ComboBox(Of T)
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    public class ComboBox<T> : ComboBoxBase<T>, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent  
    public class ComboBox = class(ComboBoxBase, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent)
    JScript does not support Generics.
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    public __gc class ComboBox<T> : public ComboBoxBase<T>, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent  
    [Scripts(Mono.Cecil.CustomAttributeArgument[])]
    generic<typename T>
    public ref class ComboBox : public ComboBoxBase<T>, IDropDown, ITemplate, Microsoft.AspNetCore.Html.IHtmlContent  
    Type Parameters
    T
    Inheritance Hierarchy

    System.Object
       C1.Web.Mvc.Component
          C1.Web.Mvc.Control
             C1.Web.Mvc.ItemsBoundControl<T>
                C1.Web.Mvc.DropDown<T>
                   C1.Web.Mvc.ComboBoxBase<T>
                      C1.Web.Mvc.ComboBox<T>

    See Also